home *** CD-ROM | disk | FTP | other *** search
/ SPACE 2 / SPACE - Library 2 - Volume 1.iso / apps / 131 / applic / phone.doc < prev    next >
Text File  |  1987-04-17  |  2KB  |  49 lines

  1. This program was done for a C programming class at BCC.  The idea came from
  2. Jerry Houston, the instructor.  This program is designed to be a simple
  3. phone directory that can hold up to 100 names in it.  Instead of going into
  4. a very large database and screwing around to add a phone number to a directory,
  5. all you need to do is either type PHONE or double click the phone.ttp icon.
  6. The below examples will be using a command shell.  If you are double clicking
  7. the icon, just remove PHONE from the examples.
  8.  
  9. To add a name and phone number type :
  10.  
  11. >PHONE + LASTNAME FIRSTNAME PHONENUMBER
  12.  
  13. To delete an entry type :
  14.  
  15. >PHONE - LASTNAME FIRSTNAME
  16.  
  17. To change anything in a certain entry type :
  18.  
  19. >PHONE ? LASTNAME FIRSTNAME
  20.  
  21. To list a particular entry type :
  22.  
  23. >PHONE LASTNAME FIRSTNAME
  24.  
  25. To list everybody with a certain last name type :
  26.  
  27. >PHONE LASTNAME
  28.  
  29. This program is public domain and may be circulated freely.  I am enclosing the
  30. source code along with it so that people may alter this program to their needs.
  31. Please do not circulate any altered forms of this program.  Any comments may
  32. be sent by mail to :
  33.  
  34. Matt Leber
  35. 8851 SE 37th
  36. Mercer Island, WA  98040
  37.  
  38. Or to either GEnie or CompuServe via :
  39.  
  40. GEnie : M.LEBER
  41.  
  42. CompuServe : 73657,3646
  43.  
  44. This program creates and maintains a file called "PHONE.DAT"  It must be in
  45. the same directory that PHONE.TTP is in order for the program to work
  46. correctly.  I hope that this program proves useful.  Enjoy!
  47.  
  48.                               Matt Leber
  49.